-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#6] 공고 삭제 기능 구현 #13
[#6] 공고 삭제 기능 구현 #13
Conversation
1. DeleteResponseDto 추가 2. 공고 삭제 API 추가
1. deleteJobPosting 메소드 추가
1. deleteJobPosting 메소드 추가
1. OnDeletedJobPosting
1. 삭제 버튼 클릭 시 Bloc 삭제 이벤트 연결 2. 실패 메시지 노출 후 초기화 이벤트 추가
1. 서버 응답에 맞게 코드 수정
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
피드백 확인 부탁드립니다.
required String jobPostingId, | ||
}) async { | ||
final result = | ||
await repository.deleteJobPosting(jobPostingId: jobPostingId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
await repository.deleteJobPosting(jobPostingId: jobPostingId); | |
await repository.delete(id: jobPostingId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#11 PR 수정하면서 같이 반영해 푸시했습니다!
jobPostingRepo.delete()
로 사용할 수 있게 변경했습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
변경사항
DeleteResponseDto
추가Screenshot
_._.webm
�Issues
close #6